home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Interactive Reference Guide
/
C-C++ Interactive Reference Guide.iso
/
c_ref
/
csource5
/
357_01
/
cstar1.exe
/
MODE.TST
< prev
next >
Wrap
Text File
|
1991-11-15
|
386b
|
25 lines
/*
Test of one-argument machine mnemonics.
NO line of this file should generate an error.
The first test in each series is short one argument.
The last test in each series has one extra argument.
*/
int mem;
char *a1;
char *pc;
long d2, d3;
main()
{
neg(*a1);
neg(*(a1+5));
neg(*(a1+d3+5));
neg(*(a1+d3));
pea(*(pc+5));
pea(*(pc+d3+5));
pea(*(pc+d3));
}